home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / window / winclip / exam105.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-12  |  493 b   |  14 lines

  1.   #include "window.h"
  2.   #define REVERSE  CREATE_VIDEO_ATTRIBUTE(white,black)
  3.   main()
  4.   {
  5.     int i;
  6.     WindowInitializeSystem();
  7.     VideoWriteStringRJAttr("This",1,10,REVERSE);
  8.     VideoWriteStringRJAttr("is",2,10,REVERSE);
  9.     VideoWriteStringRJAttr("right",3,10,REVERSE);
  10.     VideoWriteStringRJAttr("justified",4,10,REVERSE);
  11.     VideoWriteStringRJAttr("on ",5,10,REVERSE);
  12.     VideoWriteStringRJAttr("column",6,10,REVERSE);
  13.     VideoWriteStringRJAttr("10",7,10,REVERSE);
  14.   }